eb4ec31df8a7e971e332edc504b5b08b2ee55fce,samples/src/main/java/com/netopyr/reduxfx/colorchooser/component/view/ColorChooserView.java,ColorChooserView,view,#ColorChooserModel#,43
Before Change
*/
public static VNode<ColorChooserAction> view(ColorChooserModel state) {
return VBox()
.spacing(10.0)
.children(
Slider()
// This is how a property value and a ChangeListener can be set.
// The ChangeListener gets the old and the new value and has to return the Action that should
After Change
*/
public static VNode<ColorChooserAction> view(ColorChooserModel state) {
return (VNode<ColorChooserAction>) VBox()
.spacing(10.0)
// .children(
// Slider()
// // This is how a property value and a ChangeListener can be set.
// // The ChangeListener gets the old and the new value and has to return the Action that should